class = $class; $this->method = $method; $this->property = $property; RectorAssert::className($class); RectorAssert::methodName($method); RectorAssert::propertyName($property); } public function getObjectType() : ObjectType { return new ObjectType($this->class); } public function getMethod() : string { return $this->method; } public function getProperty() : string { return $this->property; } }